body {
    font-family: 'Montserrat', sans-serif;
    width: 700px;
    height: 100%;
    margin: 0px auto;
    background-color: black;
}
body main {
    height: 95%;
    display: flex;
    flex-direction: column;
    padding: 5% 0px 0px;
}
body main .section-profile {
    height: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 8px;
}


body main .section-profile .profile-image img {
    width: 100px;
    border-radius: 10px;
}
body main .section-profile .profile-name {
    font-size: 20px;
    font-weight: bold;
    color: white;
}
body main .section-profile .profile-location {
    font-size: 14px;
    color: #a9a9a9;
    text-align: center;
}

body main .section-gallery > div {
    display: flex;
    justify-content: center;
    align-items: center;
}
body main .section-gallery > div > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}
body main .section-gallery {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    padding: 30px 0px;
}
body main .section-gallery .wide {
    grid-column: span 2;
}
body main .section-gallery .tall {
    grid-row: span 3;
    grid-column: span 2;
}

@media screen and (max-width: 425px) {
    body {
        width: 95%;
   }
    body main .section-gallery {
        grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
        grid-auto-rows: 110px;
        padding: 30px 0px 0px;
   }
    body footer {
        height: 60px;
   }
}
